home *** CD-ROM | disk | FTP | other *** search
- // gpibout.cpp
- #include <iostream.h>
- #include <stdlib.h>
- #include "gpibio.h"
-
- // OUTPUT CLASS FUNCTIONS
- gpibout::gpibout(int d,int b) : gpibio(b) // constructor
- {
- device = dvr[b]->open_device(d);
- }
-
- // gout << string
- gpibout & gpibout::operator <<(char _FAR *s)
- {
- sput(s);
- return (*this);
- }
-
- ... //[full source included on code disk -mb]
-